home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / big5prober.py < prev    next >
Text File  |  2006-10-21  |  2KB  |  42 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is Mozilla Communicator client code.
  3. # The Initial Developer of the Original Code is
  4. # Netscape Communications Corporation.
  5. # Portions created by the Initial Developer are Copyright (C) 1998
  6. # the Initial Developer. All Rights Reserved.
  7. # Contributor(s):
  8. #   Mark Pilgrim - port to Python
  9. #
  10. # This library is free software; you can redistribute it and/or
  11. # modify it under the terms of the GNU Lesser General Public
  12. # License as published by the Free Software Foundation; either
  13. # version 2.1 of the License, or (at your option) any later version.
  14. # This library is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. # Lesser General Public License for more details.
  18. # You should have received a copy of the GNU Lesser General Public
  19. # License along with this library; if not, write to the Free Software
  20. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. # 02110-1301  USA
  22. ######################### END LICENSE BLOCK #########################
  23.  
  24. from mbcharsetprober import MultiByteCharSetProber
  25. from codingstatemachine import CodingStateMachine
  26. from chardistribution import Big5DistributionAnalysis
  27. from mbcssm import Big5SMModel
  28.  
  29. class Big5Prober(MultiByteCharSetProber):
  30.     def __init__(self):
  31.         MultiByteCharSetProber.__init__(self)
  32.         self._mCodingSM = CodingStateMachine(Big5SMModel)
  33.         self._mDistributionAnalyzer = Big5DistributionAnalysis()
  34.         self.reset()
  35.  
  36.     def get_charset_name(self):
  37.         return "Big5"
  38.